home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / misc / math / lifemake.cpt / LifeMaker Demo.rsrc / LIF2_6079_Brain < prev    next >
Encoding:
Text File  |  1991-07-16  |  272 b   |  8 lines

  1. RULE Brain      (* example of a four state rule *)
  2.    VAR sum, stimulus, ready
  3. BEGIN
  4.    sum := north[0] + NE[0] + east[0] + SE[0] + south[0] + SW[0] + west[0] + NW[0]
  5.    stimulus := sum = 2
  6.    ready := center = 0
  7.    RETURN (ready AND stimulus) + center[0] + center[0]
  8. END